GtkStyleContext: Add gtk_render_arrow().
authorCarlos Garnacho <carlosg@gnome.org>
Sat, 27 Mar 2010 18:57:54 +0000 (19:57 +0100)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:36:54 +0000 (15:36 +0100)
gtk/gtkstylecontext.c
gtk/gtkstylecontext.h

index 50d3bb28590aa88a364479fbd9bb5e0acd923af4..43fb27a3addd2d7e5352014d9952d8a6455bb28f 100644 (file)
@@ -629,5 +629,27 @@ gtk_render_option (GtkStyleContext *context,
                                x, y, width, height);
 }
 
+void
+gtk_render_arrow (GtkStyleContext *context,
+                  cairo_t         *cr,
+                  gdouble          angle,
+                  gdouble          x,
+                  gdouble          y,
+                  gdouble          size)
+{
+  GtkStyleContextPrivate *priv;
+  GtkThemingEngineClass *engine_class;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (cr != NULL);
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  engine_class = GTK_THEMING_ENGINE_GET_CLASS (priv->theming_engine);
+
+  _gtk_theming_engine_set_context (priv->theming_engine, context);
+  engine_class->render_arrow (priv->theming_engine, cr,
+                              angle, x, y, size);
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
index 8a14b1ed830bb4bcd61c10681d1151f9b5b3ece3..806d25f754257b3a271c631b4531950bf631fefa 100644 (file)
@@ -115,6 +115,12 @@ void gtk_render_option (GtkStyleContext *context,
                         gdouble          y,
                         gdouble          width,
                         gdouble          height);
+void gtk_render_arrow  (GtkStyleContext *context,
+                        cairo_t         *cr,
+                        gdouble          angle,
+                        gdouble          x,
+                        gdouble          y,
+                        gdouble          size);
 
 G_END_DECLS